home *** CD-ROM | disk | FTP | other *** search
/ PC Advisor 2011 May / PC Advisor 190 E.iso / pc / ESSENTIALS / VLC Media Player 1.1 / vlc-1.1.5-win32.exe / lua / sd / icecast.lua < prev    next >
Encoding:
Text File  |  2010-11-13  |  1.6 KB  |  40 lines

  1. --[[
  2.  $Id$
  3.  
  4.  Copyright ┬⌐ 2010 VideoLAN and AUTHORS
  5.  
  6.  Authors: Fabio Ritrovato <sephiroth87 at videolan dot org>
  7.  
  8.  This program is free software; you can redistribute it and/or modify
  9.  it under the terms of the GNU General Public License as published by
  10.  the Free Software Foundation; either version 2 of the License, or
  11.  (at your option) any later version.
  12.  
  13.  This program is distributed in the hope that it will be useful,
  14.  but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.  GNU General Public License for more details.
  17.  
  18.  You should have received a copy of the GNU General Public License
  19.  along with this program; if not, write to the Free Software
  20.  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  21. --]]
  22. require "simplexml"
  23.  
  24. function descriptor()
  25.     return { title="Icecast Directory" }
  26. end
  27.  
  28. function main()
  29.     local tree = simplexml.parse_url("http://dir.xiph.org/yp.xml")
  30.     for _, station in ipairs( tree.children ) do
  31.         simplexml.add_name_maps( station )
  32.         vlc.sd.add_item( {path=station.children_map["listen_url"][1].children[1],
  33.                           title=station.children_map["server_name"][1].children[1],
  34.                           genre=station.children_map["genre"][1].children[1],
  35.                           nowplaying=station.children_map["current_song"][1].children[1],
  36.                           meta={["Icecast"]={["Bitrate"]=station.children_map["bitrate"][1].children[1];
  37.                                              ["Server type"]=station.children_map["server_type"][1].children[1]}}} )
  38.     end
  39. end
  40.